1
'*************************** Module Header ******************************'
2 ' Module Name: INTERNET_OPTION.vb
3 ' Project: VBWebBrowserWithProxy
4 ' Copyright (c) Microsoft Corporation.
6 ' This enum contains 4 WinINet constants used in method InternetQueryOption and
7 ' InternetSetOption functions.
8 ' Visit http://msdn.microsoft.com/en-us/library/aa385328(VS.85).aspx to get the
9 ' whole constants list.
11 ' This source is subject to the Microsoft Public License.
12 ' See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
13 ' All other rights reserved.
15 ' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
16 ' EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
17 ' WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
18 '*************************************************************************'
20 Public Enum INTERNET_OPTION
21 ' Sets or retrieves an INTERNET_PER_CONN_OPTION_LIST structure that specifies
22 ' a list of options for a particular connection.
23 INTERNET_OPTION_PER_CONNECTION_OPTION
= 75
25 ' Notify the system that the registry settings have been changed so that
26 ' it verifies the settings on the next call to InternetConnect.
27 INTERNET_OPTION_SETTINGS_CHANGED
= 39
29 ' Causes the proxy data to be reread from the registry for a handle.
30 INTERNET_OPTION_REFRESH
= 37